home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d1 / batchlrn.arc / BATDO-4.HLP < prev    next >
Text File  |  1991-06-17  |  1KB  |  24 lines

  1.               REPEATING BATCH FILE FOR YOUR REFERENCE
  2.                   1) IF %1 = = YOU GOTO YOU
  3.                   2) IF %1 = = ME GOTO ME
  4.                   3) GOTO END
  5.                   4) :YOU
  6.                   5) CD\YOU    [this sub-directory would have to exist]
  7.                   6) TYPE YOUMENU.DOC   [so would this file]
  8.                   7) GOTO END
  9.                   8) :ME
  10.                   9) CD\ME    [same as line #5]
  11.                  10) TYPE MEMENU.DOC [same as line #6]
  12.                  11) GOTO END
  13.                  12) :END
  14.         From line1 LOGON"sees":YOU.The batch processing file jumps 
  15.         directly to:YOU,ignoring all the lines in between, and be-
  16.         moving through the rest of the file lines. Follow the cmds
  17.         after :YOU; DOS changes directories (CD\) as requested  to
  18.         subdirectory YOU and uses TYPE to display the file on CRT.
  19.         The next line says GOTO END.  DOS "looks" for the label>>>
  20.         :END.  This will cause execution to jump over the next few
  21.         lines, which pertain to ME,and go to the end of LOGON.BAT.
  22.         When ME logs on, a different sequence occurs. The charting
  23.         of LOGON on the next page should show you what happens.
  24.